Lsync + Rsync : Sync Files timely
2016/01/17 |
Install Lsyncd that is a flexible cross-platform synchronization tool.
|
|
[1] | In addition to settings of [1], Install and configure Lsyncd to sync files or directories timely. |
root@dlp:~#
root@dlp:~# apt-get -y install lsyncd mkdir /etc/lsyncd
root@dlp:~#
vi /etc/lsyncd/lsyncd.conf.lua # create new settings{ statusFile = "/tmp/lsyncd.stat", statusInterval = 1, } sync{ default.rsync, # source directory source="/root/work/", # destination Hostname or IP address:(the name set in rsyncd.conf) target="10.0.0.31::backup", # excluding list excludeFrom="/etc/rsync_exclude.lst", } /etc/init.d/lsyncd start * Starting synchronization daemon lsyncd ...done. |
[2] |
Make sure files and directories are copied timely on destination Host.
|